home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Internet / The Dude / dude-install-3.5.exe / data / files / mibs / TRANGOM5800S-MIB.txt < prev    next >
Encoding:
Text File  |  2009-12-11  |  45.8 KB  |  1,455 lines

  1. -- Private MIB definition for Trango Systems
  2. -- Access 58xx series wireless broadband Access Point M5800S-AP-60 and M5830S-AP-60
  3. -- Version: 1.0
  4. -- Date: Feb 28, 2003
  5. --
  6. -- Copyright 2003: Trango Systems, Inc. All Rights Reserved.
  7. -- Trango Systems, Inc. 15070 Avenue Of Science Suite 200 San Diego CA 92128 USA.
  8. --
  9. -- Reproduction of this document is authorized on condition that the
  10. -- foregoing copyright notice is included.
  11.  
  12. TRANGOM5800S-MIB DEFINITIONS ::= BEGIN
  13.  
  14. -- MIB module for enterprise trango wireless broadband
  15. -- of management of M5800S AP and SU units
  16.  
  17.     IMPORTS
  18.         enterprises, IpAddress, Counter
  19.             FROM RFC1155-SMI
  20.         TRAP-TYPE
  21.             FROM RFC-1215
  22.         OBJECT-TYPE
  23.             FROM RFC-1212;
  24.  
  25.           -- textual conventions
  26.  
  27.           DisplayString ::=
  28.               OCTET STRING
  29.           -- This data type is used to model textual information taken
  30.           -- from the NVT ASCII character set.  By convention, objects
  31.           -- with this syntax are declared as having
  32.           --
  33.           --      SIZE (0..255)
  34.  
  35.  
  36.     -- trango wireless broadband MIB registration id assigned to 5454.
  37.     -- customer needs to change this value based on their OEM value.
  38.     trango          OBJECT IDENTIFIER ::= { enterprises 5454 }
  39.     tbw                OBJECT IDENTIFIER ::= { trango 1 }
  40.     m5800sap        OBJECT IDENTIFIER ::= { tbw 10 }
  41.  
  42.     -- modules branched from m5800sap
  43.     apsystem    OBJECT IDENTIFIER ::= { m5800sap 1 }
  44.     aprf        OBJECT IDENTIFIER ::= { m5800sap 2 }
  45.     su          OBJECT IDENTIFIER ::= { m5800sap 3 }
  46.     trapconfig  OBJECT IDENTIFIER ::= { m5800sap 4 }
  47.     mibinfo       OBJECT IDENTIFIER ::= { m5800sap 5 }
  48.     m5800straps    OBJECT IDENTIFIER ::= { m5800sap 16}
  49.     
  50.     apversion    OBJECT IDENTIFIER ::= { apsystem 1 }
  51.     apswitches    OBJECT IDENTIFIER ::= { apsystem 13}
  52.     aptraffic    OBJECT IDENTIFIER ::= { apsystem 15}
  53.     aprftable   OBJECT IDENTIFIER ::= { aprf 3 }
  54.     apism       OBJECT IDENTIFIER ::= { aprf 4 }
  55.     apunii      OBJECT IDENTIFIER ::= { aprf 5 }
  56.     sudb        OBJECT IDENTIFIER ::= { su 5 }
  57.  
  58.     -- MIB objects defined below
  59.  
  60.     -- apsystem objects
  61.     apsysHW OBJECT-TYPE
  62.         SYNTAX     OCTET STRING (SIZE(2))
  63.         ACCESS     read-only
  64.         STATUS     mandatory
  65.         DESCRIPTION
  66.                "Hardware version."
  67.         ::= { apversion 1 }
  68.  
  69.     apsysFW OBJECT-TYPE
  70.         SYNTAX  DisplayString (SIZE (0..80))
  71.         ACCESS     read-only
  72.         STATUS     mandatory
  73.         DESCRIPTION
  74.                "Main firmware version.
  75.              Format: <code version>H<hardware version>D<date>."
  76.         ::= { apversion 2 }
  77.  
  78.     apsysFPGA OBJECT-TYPE
  79.         SYNTAX     OCTET STRING (SIZE(4))
  80.         ACCESS     read-only
  81.         STATUS     mandatory
  82.         DESCRIPTION
  83.                "FPGA firmware version."
  84.         ::= { apversion 3 }
  85.  
  86.     apsysChecksum OBJECT-TYPE
  87.         SYNTAX     OCTET STRING (SIZE(4))
  88.         ACCESS     read-only
  89.         STATUS  mandatory
  90.         DESCRIPTION
  91.                "AP firmware checksum."
  92.         ::= { apversion 4 }
  93.  
  94.     apsysDeviceId OBJECT-TYPE
  95.         SYNTAX    OCTET STRING (SIZE(6))
  96.         ACCESS     read-only
  97.         STATUS     mandatory
  98.         DESCRIPTION
  99.             "MAC address."
  100.         ::= { apsystem 2 }
  101.  
  102.     apsysBaseId OBJECT-TYPE
  103.         SYNTAX    INTEGER (0..127)
  104.         ACCESS     read-write
  105.         STATUS     mandatory
  106.         DESCRIPTION
  107.             "Cluster that the AP belongs to.
  108.              All APs and SUs in the same cluster shall have the same Base ID."
  109.         ::= { apsystem 3 }
  110.  
  111.     apsysAPId OBJECT-TYPE
  112.         SYNTAX    INTEGER (0..255)
  113.         ACCESS     read-write
  114.         STATUS     mandatory
  115.         DESCRIPTION
  116.             "AP ID. Each AP in a cluster shall have unique AP ID."
  117.         ::= { apsystem 4 }
  118.  
  119.     apsysDefOpMode OBJECT-TYPE
  120.         SYNTAX    INTEGER {
  121.                     ap(1),
  122.                     off(0)
  123.                 }
  124.         ACCESS     read-write
  125.         STATUS     mandatory
  126.         DESCRIPTION
  127.             "The operation mode (ap or off) the radio is on after reboot/power cycle."
  128.         ::= { apsystem 5 }
  129.  
  130.     apsysCurOpMode OBJECT-TYPE
  131.         SYNTAX    INTEGER {
  132.                     ap(1),
  133.                     off(0)
  134.                 }
  135.         ACCESS     read-only
  136.         STATUS     mandatory
  137.         DESCRIPTION
  138.             "Radio's current operation mode."
  139.         ::= { apsystem 6 }
  140.         
  141.     apsysActivateOpmode OBJECT-TYPE
  142.         SYNTAX  INTEGER {
  143.                     deactivated(0),
  144.                     activateapmode(1)
  145.                 }
  146.         ACCESS  read-write
  147.         STATUS  mandatory
  148.         DESCRIPTION
  149.             "Engage AP unit to ap operation mode."
  150.         DEFVAL { deactivated }
  151.         ::= { apsystem 7 }
  152.  
  153.     apsysIPAddr OBJECT-TYPE
  154.         SYNTAX     IpAddress
  155.         ACCESS     read-write
  156.         STATUS     mandatory
  157.         DESCRIPTION
  158.             "IP address."
  159.         ::= { apsystem 8 }
  160.  
  161.     apsysSubnet OBJECT-TYPE
  162.         SYNTAX    IpAddress
  163.         ACCESS    read-write
  164.         STATUS    mandatory
  165.         DESCRIPTION
  166.             "Subnet mask."
  167.         ::= { apsystem 9 }
  168.  
  169.     apsysDefaultGateway OBJECT-TYPE
  170.         SYNTAX    IpAddress
  171.         ACCESS    read-write
  172.         STATUS    mandatory
  173.         DESCRIPTION
  174.             "Default gateway."
  175.         ::= { apsystem 10 }
  176.  
  177.     apsysReadCommStr OBJECT-TYPE
  178.         SYNTAX  DisplayString (SIZE (0..32))
  179.         ACCESS    read-write
  180.         STATUS  mandatory
  181.         DESCRIPTION
  182.             "SNMP agent read community string. It is used for authentication purpose."
  183.         ::= { apsystem 11 }
  184.  
  185.     apsysWriteCommStr OBJECT-TYPE
  186.         SYNTAX  DisplayString (SIZE (0..32))
  187.         ACCESS    read-write
  188.         STATUS  mandatory
  189.         DESCRIPTION
  190.             "SNMP agent write community string. It is used for authentication purpose."
  191.         ::= { apsystem 12 }
  192.  
  193.     apsysBlockBroadcastMulticast OBJECT-TYPE
  194.         SYNTAX    INTEGER {
  195.                     passed(0),
  196.                     blocked(1)
  197.                 }
  198.         ACCESS     read-write
  199.         STATUS     mandatory
  200.         DESCRIPTION
  201.             "This switch enables or disables the blocking of Ethernet
  202.              control packet except ICMP and ARP to reduce the amount
  203.              of uneccessary overhead introduced to the wireless link."
  204.         ::= { apswitches 1 }
  205.  
  206.     apsysSUtoSU OBJECT-TYPE
  207.          SYNTAX    INTEGER {
  208.                     disabled(0),
  209.                     enabled(1)
  210.                 }
  211.         ACCESS     read-write
  212.         STATUS     mandatory
  213.         DESCRIPTION
  214.             "This switch enables or disables the peer-to-peer
  215.              feature among SUs through the AP. Before this switch
  216.              is turned on, all SUs that want to communicate with
  217.              each other have to be assigned to the same group."
  218.         ::= { apswitches 2 }
  219.  
  220.     apsysTFTPD OBJECT-TYPE
  221.         SYNTAX    INTEGER {
  222.                     disabled(0),
  223.                     enabled(1)
  224.                 }
  225.         ACCESS     read-write
  226.         STATUS     mandatory
  227.         DESCRIPTION
  228.             "This switch enables or disables the TFTP operation. When
  229.              it is turned on, then the AP will be ready for code download."
  230.         ::= { apswitches 4 }
  231.  
  232.     apsysHTTPD OBJECT-TYPE
  233.         SYNTAX    INTEGER {
  234.                     disabled(0),
  235.                     enabled(1)
  236.                 }
  237.         ACCESS     read-write
  238.         STATUS     mandatory
  239.         DESCRIPTION
  240.             "When it is turned on, then the AP is accessible for
  241.              configuring via web browser (e.g. IE or Nescape)."
  242.         ::= { apswitches 5 }
  243.  
  244.     apsysMIRThreshold OBJECT-TYPE
  245.         SYNTAX    INTEGER {
  246.                     disabled(0),
  247.                     fourmbps(4),
  248.                     fivembps(5),
  249.                     sixmbps(6),
  250.                     sevenmbps(7),
  251.                     eightmbps(8)
  252.                 }
  253.         ACCESS    read-write
  254.         STATUS  mandatory
  255.         DESCRIPTION
  256.             "Maximum Information Rate (in Kbps), the AP allows the
  257.              network to utilize before enforcing CIR on each subscriber."
  258.         ::= { apsystem 14 }
  259.  
  260.     apsysEthRxAvgThroughputLog OBJECT-TYPE
  261.         SYNTAX     INTEGER
  262.         ACCESS    read-only    
  263.         STATUS  mandatory
  264.         DESCRIPTION
  265.             "Average payload data throughput (in Kbits/sec)
  266.              received on Ethernet port over the last 60 seconds."
  267.         ::= { aptraffic 1 }
  268.  
  269.     apsysEthTxAvgThroughputLog OBJECT-TYPE
  270.         SYNTAX     INTEGER
  271.         ACCESS    read-only
  272.         STATUS    mandatory
  273.         DESCRIPTION
  274.             "Average payload data throughput (in Kbits/sec)
  275.              transmitted on Ethernet port over the last 60 seconds."
  276.         ::= { aptraffic 2 }
  277.  
  278.     apsysRfRxAvgThroughputLog OBJECT-TYPE
  279.         SYNTAX     INTEGER
  280.         ACCESS    read-only
  281.         STATUS    mandatory
  282.         DESCRIPTION
  283.             "Average payload data throughput (in Kbits/sec)
  284.              received on RF port over the last 60 seconds."
  285.         ::= { aptraffic 3 }
  286.  
  287.     apsysRfTxAvgThroughputLog OBJECT-TYPE
  288.         SYNTAX     INTEGER
  289.         ACCESS    read-only
  290.         STATUS    mandatory
  291.         DESCRIPTION
  292.             "Average payload data throughput (in Kbits/sec)
  293.              transmitted on RF port over the last 60 seconds."
  294.         ::= { aptraffic 4 }
  295.  
  296.     apsysEthInOctets OBJECT-TYPE
  297.         SYNTAX     Counter
  298.         ACCESS    read-only
  299.         STATUS    mandatory
  300.         DESCRIPTION
  301.             "Number of payload octets received on Ethernet port."
  302.         ::= { aptraffic 5 }
  303.  
  304.     apsysEthOutOctets OBJECT-TYPE
  305.         SYNTAX     Counter
  306.         ACCESS    read-only
  307.         STATUS    mandatory
  308.         DESCRIPTION
  309.             "Number of payload octets transmitted on Ethernet port."
  310.         ::= { aptraffic 6 }
  311.  
  312.     apsysRfInOctets OBJECT-TYPE
  313.         SYNTAX     Counter
  314.         ACCESS    read-only
  315.         STATUS    mandatory
  316.         DESCRIPTION
  317.             "Number of octets of SUs payload received from RF port."
  318.         ::= { aptraffic 7 }
  319.  
  320.     apsysRfOutOctets OBJECT-TYPE
  321.         SYNTAX     Counter
  322.         ACCESS    read-only
  323.         STATUS    mandatory
  324.         DESCRIPTION
  325.             "Number of octets of SUs payload transmitted to RF port."
  326.         ::= { aptraffic 8 }
  327.  
  328.     apsysTemperature OBJECT-TYPE
  329.         SYNTAX  INTEGER (-128..127)
  330.         ACCESS  read-only
  331.         STATUS  mandatory
  332.         DESCRIPTION
  333.             "Current AP temperature value (in Celsius)."
  334.         ::= {apsystem 16 }
  335.  
  336.     apsysUpdateFlashAndActivate OBJECT-TYPE
  337.         SYNTAX    INTEGER {
  338.                     no(0),
  339.                     yes(1)
  340.                 }
  341.         ACCESS    read-write
  342.         STATUS    mandatory
  343.         DESCRIPTION
  344.             "Save system setting values to Flash and activate the settings."
  345.         DEFVAL  {no}
  346.         ::= { apsystem 17 }
  347.  
  348.     apsysReboot OBJECT-TYPE
  349.         SYNTAX    INTEGER {
  350.                     deactivated(0),
  351.                     activated(1)
  352.                 }
  353.         ACCESS    read-write
  354.         STATUS  mandatory
  355.         DESCRIPTION
  356.             "Reboot the radio."
  357.         DEFVAL { deactivated }
  358.         ::= { apsystem 18 }
  359.  
  360.     -- aprf objects
  361.     aprfActiveChannel OBJECT-TYPE
  362.         SYNTAX     INTEGER (1..30)
  363.         ACCESS    read-write
  364.         STATUS    mandatory
  365.         DESCRIPTION
  366.             "It specifies the current channel number the radio operates on."
  367.         ::= { aprf 1 }
  368.  
  369.     aprfActivePolarization OBJECT-TYPE
  370.         SYNTAX  DisplayString (SIZE (1))
  371.         ACCESS    read-write
  372.         STATUS    mandatory
  373.         DESCRIPTION
  374.             "It specifies the current polarization the radio operates on."
  375.         ::= { aprf 2 }
  376.  
  377.     aprfChannel1 OBJECT-TYPE
  378.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  379.         ACCESS    read-write
  380.         STATUS    mandatory
  381.         DESCRIPTION
  382.             "RF channel 1 frequency (in MHz). It allows you to create your
  383.              own channel instead of the manufacturing defaults in the AP.
  384.              Keep in mind that channel width is 20MHz, and the frequency
  385.              specified here is the center frequency.
  386.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  387.         ::= { aprftable 1 }
  388.  
  389.     aprfChannel2 OBJECT-TYPE
  390.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  391.         ACCESS    read-write
  392.         STATUS    mandatory
  393.         DESCRIPTION
  394.             "RF channel 2 frequency (in MHz). It allows you to create your
  395.              own channel instead of the manufacturing defaults in the AP.
  396.              Keep in mind that channel width is 20MHz, and the frequency
  397.              specified here is the center frequency.
  398.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  399.         ::= { aprftable 2 }
  400.  
  401.     aprfChannel3 OBJECT-TYPE
  402.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  403.         ACCESS    read-write
  404.         STATUS    mandatory
  405.         DESCRIPTION
  406.             "RF channel 3 frequency (in MHz). It allows you to create your
  407.              own channel instead of the manufacturing defaults in the AP.
  408.              Keep in mind that channel width is 20MHz, and the frequency
  409.              specified here is the center frequency.
  410.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  411.         ::= { aprftable 3 }
  412.  
  413.     aprfChannel4 OBJECT-TYPE
  414.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  415.         ACCESS    read-write
  416.         STATUS    mandatory
  417.         DESCRIPTION
  418.             "RF channel 4 frequency (in MHz). It allows you to create your
  419.              own channel instead of the manufacturing defaults in the AP.
  420.              Keep in mind that channel width is 20MHz, and the frequency
  421.              specified here is the center frequency.
  422.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  423.         ::= { aprftable 4 }
  424.  
  425.     aprfChannel5 OBJECT-TYPE
  426.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  427.         ACCESS    read-write
  428.         STATUS    mandatory
  429.         DESCRIPTION
  430.             "RF channel 5 frequency (in MHz). It allows you to create your
  431.              own channel instead of the manufacturing defaults in the AP.
  432.              Keep in mind that channel width is 20MHz, and the frequency
  433.              specified here is the center frequency.
  434.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  435.         ::= { aprftable 5 }
  436.  
  437.     aprfChannel6 OBJECT-TYPE
  438.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  439.         ACCESS    read-write
  440.         STATUS    mandatory
  441.         DESCRIPTION
  442.             "RF channel 6 frequency (in MHz). It allows you to create your
  443.              own channel instead of the manufacturing defaults in the AP.
  444.              Keep in mind that channel width is 20MHz, and the frequency
  445.              specified here is the center frequency.
  446.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  447.         ::= { aprftable 6 }
  448.  
  449.     aprfChannel7 OBJECT-TYPE
  450.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  451.         ACCESS    read-write
  452.         STATUS    mandatory
  453.         DESCRIPTION
  454.             "RF channel 7 frequency (in MHz). It allows you to create your
  455.              own channel instead of the manufacturing defaults in the AP.
  456.              Keep in mind that channel width is 20MHz, and the frequency
  457.              specified here is the center frequency.
  458.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  459.         ::= { aprftable 7 }
  460.  
  461.     aprfChannel8 OBJECT-TYPE
  462.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  463.         ACCESS    read-write
  464.         STATUS    mandatory
  465.         DESCRIPTION
  466.             "RF channel 8 frequency (in MHz). It allows you to create your
  467.              own channel instead of the manufacturing defaults in the AP.
  468.              Keep in mind that channel width is 20MHz, and the frequency
  469.              specified here is the center frequency.
  470.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  471.         ::= { aprftable 8 }
  472.  
  473.     aprfChannel9 OBJECT-TYPE
  474.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  475.         ACCESS    read-write
  476.         STATUS    mandatory
  477.         DESCRIPTION
  478.             "RF channel 9 frequency (in MHz). It allows you to create your
  479.              own channel instead of the manufacturing defaults in the AP.
  480.              Keep in mind that channel width is 20MHz, and the frequency
  481.              specified here is the center frequency.
  482.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  483.         ::= { aprftable 9 }
  484.  
  485.     aprfChannel10 OBJECT-TYPE
  486.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  487.         ACCESS    read-write
  488.         STATUS    mandatory
  489.         DESCRIPTION
  490.             "RF channel 10 frequency (in MHz). It allows you to create your
  491.              own channel instead of the manufacturing defaults in the AP.
  492.              Keep in mind that channel width is 20MHz, and the frequency
  493.              specified here is the center frequency.
  494.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  495.         ::= { aprftable 10 }
  496.  
  497.     aprfChannel11 OBJECT-TYPE
  498.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  499.         ACCESS    read-write
  500.         STATUS    mandatory
  501.         DESCRIPTION
  502.             "RF channel 11 frequency (in MHz). It allows you to create your
  503.              own channel instead of the manufacturing defaults in the AP.
  504.              Keep in mind that channel width is 20MHz, and the frequency
  505.              specified here is the center frequency.
  506.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  507.         ::= { aprftable 11 }
  508.  
  509.     aprfChannel12 OBJECT-TYPE
  510.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  511.         ACCESS    read-write
  512.         STATUS    mandatory
  513.         DESCRIPTION
  514.             "RF channel 12 frequency (in MHz). It allows you to create your
  515.              own channel instead of the manufacturing defaults in the AP.
  516.              Keep in mind that channel width is 20MHz, and the frequency
  517.              specified here is the center frequency.
  518.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  519.         ::= { aprftable 12 }
  520.  
  521.     aprfChannel13 OBJECT-TYPE
  522.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  523.         ACCESS    read-write
  524.         STATUS    mandatory
  525.         DESCRIPTION
  526.             "RF channel 13 frequency (in MHz). It allows you to create your
  527.              own channel instead of the manufacturing defaults in the AP.
  528.              Keep in mind that channel width is 20MHz, and the frequency
  529.              specified here is the center frequency.
  530.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  531.         ::= { aprftable 13 }
  532.  
  533.     aprfChannel14 OBJECT-TYPE
  534.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  535.         ACCESS    read-write
  536.         STATUS    mandatory
  537.         DESCRIPTION
  538.             "RF channel 14 frequency (in MHz). It allows you to create your
  539.              own channel instead of the manufacturing defaults in the AP.
  540.              Keep in mind that channel width is 20MHz, and the frequency
  541.              specified here is the center frequency.
  542.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  543.         ::= { aprftable 14 }
  544.  
  545.     aprfChannel15 OBJECT-TYPE
  546.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  547.         ACCESS    read-write
  548.         STATUS    mandatory
  549.         DESCRIPTION
  550.             "RF channel 15 frequency (in MHz). It allows you to create your
  551.              own channel instead of the manufacturing defaults in the AP.
  552.              Keep in mind that channel width is 20MHz, and the frequency
  553.              specified here is the center frequency.
  554.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  555.         ::= { aprftable 15 }
  556.  
  557.     aprfChannel16 OBJECT-TYPE
  558.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  559.         ACCESS    read-write
  560.         STATUS    mandatory
  561.         DESCRIPTION
  562.             "RF channel 16 frequency (in MHz). It allows you to create your
  563.              own channel instead of the manufacturing defaults in the AP.
  564.              Keep in mind that channel width is 20MHz, and the frequency
  565.              specified here is the center frequency.
  566.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  567.         ::= { aprftable 16 }
  568.  
  569.     aprfChannel17 OBJECT-TYPE
  570.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  571.         ACCESS    read-write
  572.         STATUS    mandatory
  573.         DESCRIPTION
  574.             "RF channel 17 frequency (in MHz). It allows you to create your
  575.              own channel instead of the manufacturing defaults in the AP.
  576.              Keep in mind that channel width is 20MHz, and the frequency
  577.              specified here is the center frequency.
  578.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  579.         ::= { aprftable 17 }
  580.  
  581.     aprfChannel18 OBJECT-TYPE
  582.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  583.         ACCESS    read-write
  584.         STATUS    mandatory
  585.         DESCRIPTION
  586.             "RF channel 18 frequency (in MHz). It allows you to create your
  587.              own channel instead of the manufacturing defaults in the AP.
  588.              Keep in mind that channel width is 20MHz, and the frequency
  589.              specified here is the center frequency.
  590.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  591.         ::= { aprftable 18 }
  592.  
  593.     aprfChannel19 OBJECT-TYPE
  594.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  595.         ACCESS    read-write
  596.         STATUS    mandatory
  597.         DESCRIPTION
  598.             "RF channel 19 frequency (in MHz). It allows you to create your
  599.              own channel instead of the manufacturing defaults in the AP.
  600.              Keep in mind that channel width is 20MHz, and the frequency
  601.              specified here is the center frequency.
  602.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  603.         ::= { aprftable 19 }
  604.  
  605.     aprfChannel20 OBJECT-TYPE
  606.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  607.         ACCESS    read-write
  608.         STATUS    mandatory
  609.         DESCRIPTION
  610.             "RF channel 20 frequency (in MHz). It allows you to create your
  611.              own channel instead of the manufacturing defaults in the AP.
  612.              Keep in mind that channel width is 20MHz, and the frequency
  613.              specified here is the center frequency.
  614.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  615.         ::= { aprftable 20 }
  616.  
  617.     aprfChannel21 OBJECT-TYPE
  618.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  619.         ACCESS    read-write
  620.         STATUS    mandatory
  621.         DESCRIPTION
  622.             "RF channel 21 frequency (in MHz). It allows you to create your
  623.              own channel instead of the manufacturing defaults in the AP.
  624.              Keep in mind that channel width is 20MHz, and the frequency
  625.              specified here is the center frequency.
  626.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  627.         ::= { aprftable 21 }
  628.  
  629.     aprfChannel22 OBJECT-TYPE
  630.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  631.         ACCESS    read-write
  632.         STATUS    mandatory
  633.         DESCRIPTION
  634.             "RF channel 22 frequency (in MHz). It allows you to create your
  635.              own channel instead of the manufacturing defaults in the AP.
  636.              Keep in mind that channel width is 20MHz, and the frequency
  637.              specified here is the center frequency.
  638.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  639.         ::= { aprftable 22 }
  640.  
  641.     aprfChannel23 OBJECT-TYPE
  642.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  643.         ACCESS    read-write
  644.         STATUS    mandatory
  645.         DESCRIPTION
  646.             "RF channel 23 frequency (in MHz). It allows you to create your
  647.              own channel instead of the manufacturing defaults in the AP.
  648.              Keep in mind that channel width is 20MHz, and the frequency
  649.              specified here is the center frequency.
  650.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  651.         ::= { aprftable 23 }
  652.  
  653.     aprfChannel24 OBJECT-TYPE
  654.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  655.         ACCESS    read-write
  656.         STATUS    mandatory
  657.         DESCRIPTION
  658.             "RF channel 24 frequency (in MHz). It allows you to create your
  659.              own channel instead of the manufacturing defaults in the AP.
  660.              Keep in mind that channel width is 20MHz, and the frequency
  661.              specified here is the center frequency.
  662.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  663.         ::= { aprftable 24 }
  664.  
  665.     aprfChannel25 OBJECT-TYPE
  666.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  667.         ACCESS    read-write
  668.         STATUS    mandatory
  669.         DESCRIPTION
  670.             "RF channel 25 frequency (in MHz). It allows you to create your
  671.              own channel instead of the manufacturing defaults in the AP.
  672.              Keep in mind that channel width is 20MHz, and the frequency
  673.              specified here is the center frequency.
  674.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  675.         ::= { aprftable 25 }
  676.  
  677.     aprfChannel26 OBJECT-TYPE
  678.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  679.         ACCESS    read-write
  680.         STATUS    mandatory
  681.         DESCRIPTION
  682.             "RF channel 26 frequency (in MHz). It allows you to create your
  683.              own channel instead of the manufacturing defaults in the AP.
  684.              Keep in mind that channel width is 20MHz, and the frequency
  685.              specified here is the center frequency.
  686.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  687.         ::= { aprftable 26 }
  688.  
  689.     aprfChannel27 OBJECT-TYPE
  690.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  691.         ACCESS    read-write
  692.         STATUS    mandatory
  693.         DESCRIPTION
  694.             "RF channel 27 frequency (in MHz). It allows you to create your
  695.              own channel instead of the manufacturing defaults in the AP.
  696.              Keep in mind that channel width is 20MHz, and the frequency
  697.              specified here is the center frequency.
  698.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  699.         ::= { aprftable 27 }
  700.  
  701.     aprfChannel28 OBJECT-TYPE
  702.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  703.         ACCESS    read-write
  704.         STATUS    mandatory
  705.         DESCRIPTION
  706.             "RF channel 28 frequency (in MHz). It allows you to create your
  707.              own channel instead of the manufacturing defaults in the AP.
  708.              Keep in mind that channel width is 20MHz, and the frequency
  709.              specified here is the center frequency.
  710.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  711.         ::= { aprftable 28 }
  712.  
  713.     aprfChannel29 OBJECT-TYPE
  714.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  715.         ACCESS    read-write
  716.         STATUS    mandatory
  717.         DESCRIPTION
  718.             "RF channel 29 frequency (in MHz). It allows you to create your
  719.              own channel instead of the manufacturing defaults in the AP.
  720.              Keep in mind that channel width is 20MHz, and the frequency
  721.              specified here is the center frequency.
  722.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  723.         ::= { aprftable 29 }
  724.  
  725.     aprfChannel30 OBJECT-TYPE
  726.         SYNTAX     INTEGER (5260..5340 | 5736..5836)
  727.         ACCESS    read-write
  728.         STATUS    mandatory
  729.         DESCRIPTION
  730.             "RF channel 30 frequency (in MHz). It allows you to create your
  731.              own channel instead of the manufacturing defaults in the AP.
  732.              Keep in mind that channel width is 20MHz, and the frequency
  733.              specified here is the center frequency.
  734.              Frequency (5260MHz - 5340MHz) is only applicable to M5830S radio."
  735.         ::= { aprftable 30 }
  736.  
  737.     aprfismTxPowerMax OBJECT-TYPE
  738.         SYNTAX     INTEGER (-128..127)
  739.         ACCESS    read-only
  740.         STATUS    mandatory
  741.         DESCRIPTION
  742.             "The maximum ISM Tx power value can be set (in dBm)."
  743.         ::= { apism 1 }
  744.     
  745.     aprfismTxPowerMin OBJECT-TYPE
  746.         SYNTAX     INTEGER (-128..127)
  747.         ACCESS    read-only
  748.         STATUS    mandatory
  749.         DESCRIPTION
  750.             "The minimum ISM Tx power value can be set (in dBm)."
  751.         ::= { apism 2 }
  752.     
  753.     aprfismTxPower OBJECT-TYPE
  754.         SYNTAX     INTEGER (-128..127)
  755.         ACCESS    read-write
  756.         STATUS    mandatory
  757.         DESCRIPTION
  758.             "ISM RF tx power (in dBm). It specifies the power output
  759.              of the radio, excluding the antenna gain. Check parameters
  760.              aprfismTxPowerMax and aprfismTxPowerMin for power setting range."
  761.         ::= { apism 3 }
  762.  
  763.     aprfismServiceRadius OBJECT-TYPE
  764.         SYNTAX     INTEGER {
  765.                     threemiles(3),
  766.                     tenmiles(10),
  767.                     thirtymiles(20)
  768.                 }
  769.         ACCESS    read-write
  770.         STATUS    mandatory
  771.         DESCRIPTION
  772.             "ISM RF service radius (in mile). It specifies the distance of
  773.              the furthest SU the AP will serve. Based on this information,
  774.              the AP will determine the maximum wait time for a SU to
  775.              response to a poll before it starts to poll the next one."
  776.         ::= { apism 4 }
  777.  
  778.     aprfismRxThreshold OBJECT-TYPE
  779.         SYNTAX     INTEGER (-90 | -85 | -80 | -75 | -70 | -65)
  780.         ACCESS    read-write
  781.         STATUS    mandatory
  782.         DESCRIPTION
  783.             "ISM RF rx threshold (in dBm). It specifies the receiver sensitivity
  784.              of the AP. By default, the radio's sensitivity is -82dBm.
  785.              The higher the threshold is, the less sensitive the radio will be.
  786.              In M5800S, the value -90 represents the rfrxthreshold is disabled."
  787.         ::= { apism 5 }
  788.  
  789.     aprfismTargetRSSI OBJECT-TYPE
  790.         SYNTAX     INTEGER (-85..-45)
  791.         ACCESS    read-write
  792.         STATUS    mandatory
  793.         DESCRIPTION
  794.             "ISM RF target RSSI (in dBm). It specifies the target RSSI from all SUs to
  795.              the AP. Based on this parameter, the AP can power level each SU
  796.              so that it receives same level of signal strength from all SUs,
  797.              regardless far or near. Note that when you set the Target RSSI
  798.              from SU, you need to consider AP's RF Rx Threshold value.
  799.              The Target RSSI from SU must be 5dB higher than the RF Rx Threshold.
  800.              When the RF Rx Threshold is disabled, the setting of the Target RSSI
  801.              from SU shall be no less than -75dBm."
  802.         ::= { apism 6 }
  803.  
  804.     aprfuniiTxPowerMax OBJECT-TYPE
  805.         SYNTAX     INTEGER (-128..127)
  806.         ACCESS    read-only
  807.         STATUS    mandatory
  808.         DESCRIPTION
  809.             "This object is only applicable to M5830S radio.
  810.              The maximum UNII Tx power value can be set (in dBm)."
  811.         ::= { apunii 1 }
  812.     
  813.     aprfuniiTxPowerMin OBJECT-TYPE
  814.         SYNTAX     INTEGER (-128..127)
  815.         ACCESS    read-only
  816.         STATUS    mandatory
  817.         DESCRIPTION
  818.             "This object is only applicable to M5830S radio.
  819.              The minimum UNII Tx power value can be set (in dBm)."
  820.         ::= { apunii 2 }
  821.         
  822.      aprfuniiTxPower OBJECT-TYPE
  823.         SYNTAX     INTEGER (-128..127)
  824.         ACCESS    read-write
  825.         STATUS    mandatory
  826.         DESCRIPTION
  827.             "This object is only applicable to M5830S radio.
  828.              UNII RF tx power (in dBm). It specifies the power output
  829.              of the radio, excluding the antenna gain. Check parameters
  830.              aprfuniiTxPowerMax and aprfuniiTxPowerMin for power setting range."
  831.         ::= { apunii 3 }
  832.  
  833.     aprfuniiServiceRadius OBJECT-TYPE
  834.         SYNTAX     INTEGER {
  835.                     twomiles(2),
  836.                     threemiles(3),
  837.                     fourmiles(4)
  838.                 }
  839.         ACCESS    read-write
  840.         STATUS    mandatory
  841.         DESCRIPTION
  842.             "This object is only applicable to M5830S radio.
  843.              UNII RF service radius (in mile). It specifies the distance of
  844.              the furthest SU the AP will serve. Based on this information,
  845.              the AP will determine the maximum wait time for a SU to
  846.              response to a poll before it starts to poll the next one."
  847.         ::= { apunii 4 }
  848.  
  849.     aprfuniiRxThreshold OBJECT-TYPE
  850.         SYNTAX     INTEGER (-90 | -85 | -80 | -75 | -70 | -65)
  851.         ACCESS    read-write
  852.         STATUS    mandatory
  853.         DESCRIPTION
  854.             "This object is only applicable to M5830S radio.
  855.              UNII RF rx threshold (in dBm). It specifies the receiver sensitivity of the AP."
  856.         ::= { apunii 5 }
  857.  
  858.     aprfuniiTargetRSSI OBJECT-TYPE
  859.         SYNTAX     INTEGER (-85..-45)
  860.         ACCESS    read-write
  861.         STATUS    mandatory
  862.         DESCRIPTION
  863.             "This object is only applicable to M5830S radio.
  864.              UNII RF target RSSI (in dBm). It specifies the target RSSI from all SUs to
  865.              the AP. Based on this parameter, the AP can power level each SU so that
  866.              it receives same level of signal strength from all SUs, regardless far
  867.              or near. Note that when you set the Target RSSI from SU, you need to
  868.              consider AP's RF Rx Threshold value. The Target RSSI from SU must be 5dB
  869.              higher than the RF Rx Threshold."
  870.         ::= { apunii 6 }
  871.  
  872.     -- SU objects
  873.     suSUCount OBJECT-TYPE
  874.          SYNTAX    INTEGER (0..500)
  875.         ACCESS    read-only
  876.         STATUS    mandatory
  877.         DESCRIPTION
  878.             "Number of subscriber units in the subscriber database."
  879.         ::= { su 1 }
  880.  
  881.     suPowerLvlAll OBJECT-TYPE
  882.         SYNTAX    INTEGER {
  883.                     deactivated(0),
  884.                     activated(1)
  885.                 }
  886.         ACCESS    read-write
  887.         STATUS    mandatory
  888.         DESCRIPTION
  889.             "It is a feature that is typically found in more
  890.              elaborate mobile systems such as cellular CDMA
  891.              networks. Using this feature, all SUs have their
  892.              RF power output adjusted until the signal strength
  893.              for each SU as received in the AP is roughly the same."
  894.         DEFVAL  {deactivated}
  895.         ::= { su 2 }
  896.  
  897.     suStatisticsSamplePeriod OBJECT-TYPE
  898.         SYNTAX    INTEGER (1..60)
  899.         ACCESS  read-write
  900.         STATUS  mandatory
  901.         DESCRIPTION
  902.             "A period (in minute) AP requests update on SU Info Table from all associated SUs."
  903.         ::= { su 3 }
  904.  
  905.     suRebootAll OBJECT-TYPE
  906.         SYNTAX  INTEGER {
  907.                     deactivated(0),
  908.                     activated(1)
  909.                 }
  910.         ACCESS  read-write
  911.         STATUS  mandatory
  912.         DESCRIPTION
  913.             "AP broadcasts reboot command to all subscriber units."
  914.         DEFVAL { deactivated }
  915.         ::= { su 4 }
  916.  
  917.     suAddOrDeleteID OBJECT-TYPE
  918.         SYNTAX  INTEGER (1..8190)
  919.         ACCESS    read-write
  920.         STATUS    mandatory
  921.         DESCRIPTION
  922.             "Subscriber unit ID (1..8190). Each
  923.              subscriber in a sector shall have a unique ID."
  924.         ::= { sudb 1 }
  925.  
  926.     suAddMAC OBJECT-TYPE
  927.         SYNTAX    OCTET STRING (SIZE(6))
  928.         ACCESS    read-write
  929.         STATUS    mandatory
  930.         DESCRIPTION
  931.             "It is the MAC address of the subscriber unit,
  932.              which can be found on the back of the SU."
  933.         ::= { sudb 2 }
  934.  
  935.     suAddPolling OBJECT-TYPE
  936.         SYNTAX    INTEGER {
  937.                     regular(1),
  938.                     priority(5)
  939.                 }
  940.         ACCESS    read-write
  941.         STATUS    mandatory
  942.         DESCRIPTION
  943.             "It is service level value, regular or priority, of a SU.
  944.              The AP will poll priority user more often, thus better
  945.              network latency as the result. As the network latency
  946.              varies based on the number of subscriber units the AP
  947.              serves, priority user is guaranteed that the latency is
  948.              NOT greater than 100ms regardless of the size of the network."
  949.         DEFVAL  {regular}
  950.         ::= { sudb 3 }
  951.  
  952.     suAddSUtoSU OBJECT-TYPE
  953.         SYNTAX    INTEGER {
  954.                     nullgroup(0),
  955.                     group1(1),
  956.                     group2(2),
  957.                     group3(3),
  958.                     group4(4),
  959.                     group5(5),
  960.                     group6(6),
  961.                     group7(7),
  962.                     group8(8),
  963.                     group9(9),
  964.                     groupA(10),
  965.                     groupB(11),
  966.                     groupC(12),
  967.                     groupD(13),
  968.                     groupE(14),
  969.                     groupF(15)
  970.                 }
  971.         ACCESS    read-write
  972.         STATUS    mandatory
  973.         DESCRIPTION
  974.             "It is peer-to-peer group this SU belongs to.
  975.              With the SU to SU switch is turned on, SUs in
  976.              the same peer-to-peer group can communicate to
  977.              each other via the AP. There are totally 15 groups
  978.              available. Note that the SU shall be set to priority
  979.              user for this feature to improve latency."
  980.         DEFVAL  {nullgroup}
  981.         ::= { sudb 4 }
  982.  
  983.     suAddCIR OBJECT-TYPE
  984.         SYNTAX    INTEGER (0..9999)
  985.         ACCESS    read-write
  986.         STATUS    mandatory
  987.         DESCRIPTION
  988.             "It is the Committed Information Rate (in Kbps) the AP allocates to SU."
  989.         DEFVAL { 128 }
  990.         ::= { sudb 5 }
  991.  
  992.     suAddMIR OBJECT-TYPE
  993.         SYNTAX    INTEGER (0..9999)
  994.         ACCESS    read-write
  995.         STATUS    mandatory
  996.         DESCRIPTION
  997.             "It is the Maximum Information Rate (in Kbps) the AP allocates to SU."
  998.         DEFVAL { 9999 }
  999.         ::= { sudb 6 }
  1000.  
  1001.     suAdd OBJECT-TYPE
  1002.         SYNTAX    INTEGER {
  1003.                     deactivated(0),
  1004.                     add(1)
  1005.                 }
  1006.         ACCESS    read-write
  1007.         STATUS    mandatory
  1008.         DESCRIPTION
  1009.             "Add a subscriber (specified in object suAddOrDeleteID) to the subscriber database."
  1010.         DEFVAL  {deactivated}
  1011.         ::= { sudb 7 }
  1012.  
  1013.     suDelete OBJECT-TYPE
  1014.         SYNTAX    INTEGER {
  1015.                     deactivated(0),
  1016.                     delete(1)
  1017.                 }
  1018.         ACCESS    read-write
  1019.         STATUS    mandatory
  1020.         DESCRIPTION
  1021.             "Delete a subscriber (specified in object suAddOrDeleteID) from the subscriber database."
  1022.         DEFVAL  {deactivated}
  1023.         ::= { sudb 8 }
  1024.  
  1025.     suInfoTable OBJECT-TYPE
  1026.         SYNTAX    SEQUENCE OF SuInfoEntry
  1027.         ACCESS    not-accessible
  1028.         STATUS    mandatory
  1029.         DESCRIPTION
  1030.             "A table that contains subscriber unit entities."
  1031.         ::= { su 6 }
  1032.  
  1033.     suInfoEntry OBJECT-TYPE
  1034.         SYNTAX    SuInfoEntry
  1035.         ACCESS    not-accessible
  1036.         STATUS    mandatory
  1037.         DESCRIPTION
  1038.             "Information about a specific subscriber unit retrieved by its ID number."
  1039.         INDEX    { suID }
  1040.         ::= { suInfoTable 1 }
  1041.  
  1042.     SuInfoEntry ::=
  1043.         SEQUENCE {
  1044.             suID                    INTEGER,
  1045.             suMAC                    OCTET STRING,
  1046.             suPolling                INTEGER,
  1047.             suSUtoSU                 INTEGER,
  1048.             suCIR                     INTEGER,
  1049.             suMIR                    INTEGER,
  1050.             suIPAddr                IpAddress,
  1051.             suRemarks               DisplayString,
  1052.             suHWVer                    OCTET STRING,
  1053.             suFWVer                    DisplayString,
  1054.             suFPGAVer                OCTET STRING,
  1055.             suChecksum                OCTET STRING,
  1056.             suAssociation            INTEGER,
  1057.             suDIstance                INTEGER,
  1058.             suRSSIFromSU            INTEGER,
  1059.             suRSSIFromAP            INTEGER,
  1060.             suTxPower                INTEGER,
  1061.             suEthRxAvgThroughputLog INTEGER,
  1062.             suEthTxAvgThroughputLog INTEGER,
  1063.             suRfRxAvgThroughputLog  INTEGER,
  1064.             suRfTxAvgThroughputLog  INTEGER,
  1065.             suRfInOctets            Counter,
  1066.             suRfOutOctets           Counter,
  1067.             suPowerLevel    INTEGER,
  1068.             suTemperature   INTEGER,
  1069.             suReboot        INTEGER
  1070.         }
  1071.  
  1072.     suID OBJECT-TYPE
  1073.         SYNTAX    INTEGER (1..8190)
  1074.         ACCESS    read-only
  1075.         STATUS    mandatory
  1076.         DESCRIPTION
  1077.             "Subscriber unit ID. Each subscriber in a sector shall have a unique ID."
  1078.         ::= { suInfoEntry 1 }
  1079.  
  1080.     suMAC OBJECT-TYPE
  1081.         SYNTAX    OCTET STRING (SIZE(6))
  1082.         ACCESS    read-only
  1083.         STATUS    mandatory
  1084.         DESCRIPTION
  1085.             "Subscriber unit MAC Address. Format: 00 01 DE xx xx xx."
  1086.         ::= { suInfoEntry 2 }
  1087.  
  1088.     suPolling OBJECT-TYPE
  1089.         SYNTAX    INTEGER {
  1090.                     regular(1),
  1091.                     priority(5)
  1092.                 }
  1093.         ACCESS    read-only
  1094.         STATUS    mandatory
  1095.         DESCRIPTION
  1096.             "It is service level value, regular or priority, of a SU.
  1097.              The AP will poll priority user more often, thus better
  1098.              network latency as the result. As the network latency
  1099.              varies based on the number of subscriber units the AP
  1100.              serves, priority user is guaranteed that the latency is
  1101.              NOT greater than 100ms regardless of the size of the network."
  1102.         DEFVAL  {regular}
  1103.         ::= { suInfoEntry 3 }
  1104.  
  1105.     suSUtoSU OBJECT-TYPE
  1106.         SYNTAX    INTEGER {
  1107.                     nullgroup(0),
  1108.                     group1(1),
  1109.                     group2(2),
  1110.                     group3(3),
  1111.                     group4(4),
  1112.                     group5(5),
  1113.                     group6(6),
  1114.                     group7(7),
  1115.                     group8(8),
  1116.                     group9(9),
  1117.                     groupA(10),
  1118.                     groupB(11),
  1119.                     groupC(12),
  1120.                     groupD(13),
  1121.                     groupE(14),
  1122.                     groupF(15)
  1123.                 }
  1124.         ACCESS    read-only
  1125.         STATUS    mandatory
  1126.         DESCRIPTION
  1127.             "It is peer-to-peer group this SU belongs to.
  1128.              With the SU to SU switch is turned on, SUs in
  1129.              the same peer-to-peer group can communicate to
  1130.              each other via the AP. There are totally 15 groups
  1131.              available. Note that the SU shall be set to priority
  1132.              user for this feature to improve latency."
  1133.         DEFVAL  {nullgroup}
  1134.         ::= { suInfoEntry 4 }
  1135.  
  1136.     suCIR OBJECT-TYPE
  1137.         SYNTAX    INTEGER (0..9999)
  1138.         ACCESS    read-only
  1139.         STATUS    mandatory
  1140.         DESCRIPTION
  1141.             "It is the Committed Information Rate (in Kbps) the AP allocates to SU."
  1142.         ::= { suInfoEntry 5 }
  1143.  
  1144.     suMIR OBJECT-TYPE
  1145.         SYNTAX    INTEGER (0..9999)
  1146.         ACCESS    read-only
  1147.         STATUS    mandatory
  1148.         DESCRIPTION
  1149.             "It is the Maximum Information Rate (in Kbps) the AP allocates to SU."
  1150.         ::= { suInfoEntry 6 }
  1151.  
  1152.     suIPAddr OBJECT-TYPE
  1153.         SYNTAX    IpAddress
  1154.         ACCESS    read-only
  1155.         STATUS    mandatory
  1156.         DESCRIPTION
  1157.             "Subscriber unit IP Address."
  1158.         ::= { suInfoEntry 7 }
  1159.  
  1160.     suRemarks OBJECT-TYPE
  1161.         SYNTAX  DisplayString (SIZE (0..30))
  1162.         ACCESS  read-only
  1163.         STATUS  mandatory
  1164.         DESCRIPTION
  1165.             "Subscriber unit Remark."
  1166.         ::= { suInfoEntry 8 }
  1167.     
  1168.  
  1169.     suHWVer OBJECT-TYPE
  1170.         SYNTAX    OCTET STRING (SIZE(2))
  1171.         ACCESS    read-only
  1172.         STATUS    mandatory
  1173.         DESCRIPTION
  1174.             "Subscriber unit Hardware Version."
  1175.         ::= { suInfoEntry 9 }
  1176.  
  1177.     suFWVer OBJECT-TYPE
  1178.         SYNTAX  DisplayString (SIZE (0..32))
  1179.         ACCESS    read-only
  1180.         STATUS    mandatory
  1181.         DESCRIPTION
  1182.             "Subscriber unit main firmware version."
  1183.         ::= { suInfoEntry 10 }
  1184.  
  1185.     suFPGAVer OBJECT-TYPE
  1186.         SYNTAX    OCTET STRING (SIZE(4))
  1187.         ACCESS    read-only
  1188.         STATUS    mandatory
  1189.         DESCRIPTION
  1190.             "Subscriber unit FPGA firmware version."
  1191.         ::= { suInfoEntry 11 }
  1192.  
  1193.     suChecksum OBJECT-TYPE
  1194.         SYNTAX    OCTET STRING (SIZE(4))
  1195.         ACCESS    read-only
  1196.         STATUS    mandatory
  1197.         DESCRIPTION
  1198.             "Subscriber unit firmware checksum."
  1199.         ::= { suInfoEntry 12 }
  1200.  
  1201.     suAssociation OBJECT-TYPE
  1202.         SYNTAX  INTEGER {
  1203.                     associated(1),
  1204.                     notAssociated(0)
  1205.                 }
  1206.         ACCESS    read-only
  1207.         STATUS    mandatory
  1208.         DESCRIPTION
  1209.             "Subscriber unit association status."
  1210.         ::= { suInfoEntry 13 }
  1211.  
  1212.     suDIstance OBJECT-TYPE
  1213.         SYNTAX    INTEGER (0..40)
  1214.         ACCESS    read-only
  1215.         STATUS    mandatory
  1216.         DESCRIPTION
  1217.             "Distance of SU (in mile)."
  1218.         ::= { suInfoEntry 14 }
  1219.  
  1220.     suRSSIFromSU OBJECT-TYPE
  1221.         SYNTAX    INTEGER (-128..127)
  1222.         ACCESS    read-only
  1223.         STATUS    mandatory
  1224.         DESCRIPTION
  1225.             "Subscriber unit RSSI from SU (in dBm)."
  1226.         ::= { suInfoEntry 15 }
  1227.  
  1228.     suRSSIFromAP OBJECT-TYPE
  1229.         SYNTAX    INTEGER (-128..127)
  1230.         ACCESS    read-only
  1231.         STATUS    mandatory
  1232.         DESCRIPTION
  1233.             "Subscriber unit RSSI from AP (in dBm)."
  1234.         ::= { suInfoEntry 16 }
  1235.  
  1236.     suTxPower OBJECT-TYPE
  1237.         SYNTAX    INTEGER (-128..127)
  1238.         ACCESS    read-only
  1239.         STATUS    mandatory
  1240.         DESCRIPTION
  1241.             "Subscriber unit Tx Power Level (in dBm)."
  1242.         ::= { suInfoEntry 17 }
  1243.  
  1244.     suEthRxAvgThroughputLog OBJECT-TYPE
  1245.         SYNTAX    INTEGER
  1246.         ACCESS    read-only
  1247.         STATUS    mandatory
  1248.         DESCRIPTION
  1249.             "Average payload data throughput (in Kbits/sec) received on the
  1250.              Ethernet port over the period specified by suStatisticsSamplePeriod."
  1251.         ::= { suInfoEntry 18 }
  1252.  
  1253.     suEthTxAvgThroughputLog OBJECT-TYPE
  1254.         SYNTAX    INTEGER
  1255.         ACCESS    read-only
  1256.         STATUS    mandatory
  1257.         DESCRIPTION
  1258.             "Average payload data throughput (in Kbits/sec) transmitted on the
  1259.              Ethernet port over the period specified by suStatisticsSamplePeriod."
  1260.         ::= { suInfoEntry 19 }
  1261.  
  1262.     suRfRxAvgThroughputLog OBJECT-TYPE
  1263.         SYNTAX    INTEGER
  1264.         ACCESS    read-only
  1265.         STATUS    mandatory
  1266.         DESCRIPTION
  1267.             "Average payload data throughput (in Kbits/sec) received on the
  1268.              RF port over the period specified by suStatisticsSamplePeriod."
  1269.         ::= { suInfoEntry 20 }
  1270.  
  1271.     suRfTxAvgThroughputLog OBJECT-TYPE
  1272.         SYNTAX    INTEGER
  1273.         ACCESS    read-only
  1274.         STATUS    mandatory
  1275.         DESCRIPTION
  1276.             "Average payload data throughput (in Kbits/sec) transmitted on the
  1277.              RF port over the period specified by suStatisticsSamplePeriod."
  1278.         ::= { suInfoEntry 21 }
  1279.  
  1280.     suRfInOctets OBJECT-TYPE
  1281.         SYNTAX     Counter
  1282.         ACCESS    read-only
  1283.         STATUS    mandatory
  1284.         DESCRIPTION
  1285.             "Number of payload octets received on the RF port."
  1286.         ::= { suInfoEntry 22 }
  1287.  
  1288.     suRfOutOctets OBJECT-TYPE
  1289.         SYNTAX     Counter
  1290.         ACCESS    read-only
  1291.         STATUS    mandatory
  1292.         DESCRIPTION
  1293.             "Number of payload octets transmitted on the RF port."
  1294.         ::= { suInfoEntry 23 }
  1295.  
  1296.     suPowerLevel OBJECT-TYPE
  1297.         SYNTAX    INTEGER {
  1298.                     deactivated(0),
  1299.                     activated(1)
  1300.                 }
  1301.         ACCESS    read-write
  1302.         STATUS    mandatory
  1303.         DESCRIPTION
  1304.             "It is a feature that is typically found in more
  1305.              elaborate mobile systems such as cellular CDMA
  1306.              networks. Using this feature, the SU has its
  1307.              RF power output adjusted until its signal strength
  1308.              received in the AP is roughly the same."
  1309.         ::= { suInfoEntry 24 }
  1310.  
  1311.     suTemperature OBJECT-TYPE
  1312.         SYNTAX  INTEGER (-128..127)
  1313.         ACCESS  read-only
  1314.         STATUS  mandatory
  1315.         DESCRIPTION
  1316.             "Subscriber Unit temperature reading value (in Celsius)."
  1317.         ::= { suInfoEntry 25 }
  1318.  
  1319.     suReboot OBJECT-TYPE
  1320.         SYNTAX  INTEGER {
  1321.                     deactivated(0),
  1322.                     activated(1)
  1323.                 }
  1324.         ACCESS  read-write
  1325.         STATUS  mandatory
  1326.         DESCRIPTION
  1327.             "AP issues reboot command to a specific subscriber unit."
  1328.         DEFVAL { deactivated }
  1329.         ::= { suInfoEntry 26 }
  1330.  
  1331.     -- trapconfig objects
  1332.     aptrpCount OBJECT-TYPE
  1333.         SYNTAX    INTEGER (0..255)
  1334.         ACCESS    read-only
  1335.         STATUS    mandatory
  1336.         DESCRIPTION
  1337.             "Types of trap."
  1338.         ::= { trapconfig 1 }
  1339.         
  1340.     aptrpDest1IPAddress OBJECT-TYPE
  1341.         SYNTAX    IpAddress
  1342.         ACCESS    read-write
  1343.         STATUS    mandatory
  1344.         DESCRIPTION
  1345.             "Trap destination 1 IP address."
  1346.         ::= { trapconfig 2 }
  1347.          
  1348.     aptrpDest2IPAddress OBJECT-TYPE
  1349.         SYNTAX    IpAddress
  1350.         ACCESS    read-write
  1351.         STATUS    mandatory
  1352.         DESCRIPTION
  1353.             "Trap destination 2 IP address."
  1354.         ::= { trapconfig 3 }
  1355.  
  1356.     aptrpTable OBJECT-TYPE
  1357.         SYNTAX    SEQUENCE OF AptrpEntry
  1358.         ACCESS    not-accessible
  1359.         STATUS    mandatory
  1360.         DESCRIPTION
  1361.             "A table that contains information of Trango trap events ."
  1362.         ::= { trapconfig 4 }
  1363.     
  1364.     aptrpEntry OBJECT-TYPE
  1365.         SYNTAX    AptrpEntry
  1366.         ACCESS    not-accessible
  1367.         STATUS    mandatory
  1368.         DESCRIPTION
  1369.             "Information about a specific Trango trap event."
  1370.         INDEX    { aptrpIndex }
  1371.         ::= { aptrpTable 1 }
  1372.  
  1373.     AptrpEntry ::=
  1374.         SEQUENCE {
  1375.             aptrpIndex
  1376.                 INTEGER,
  1377.             aptrpID
  1378.                 INTEGER,
  1379.             aptrpCommStr
  1380.                 DisplayString,
  1381.             aptrpEnable
  1382.                 INTEGER
  1383.         }
  1384.  
  1385.     aptrpIndex    OBJECT-TYPE
  1386.         SYNTAX    INTEGER (1..5)
  1387.         ACCESS    read-only
  1388.         STATUS    mandatory
  1389.         DESCRIPTION
  1390.             "Trap index."
  1391.         ::= { aptrpEntry 1 }
  1392.     
  1393.     aptrpID    OBJECT-TYPE
  1394.         SYNTAX    INTEGER (7..255)
  1395.         ACCESS    read-only
  1396.         STATUS    mandatory
  1397.         DESCRIPTION
  1398.             "Specific trap ID."
  1399.         ::= { aptrpEntry 2 }
  1400.     
  1401.     aptrpCommStr OBJECT-TYPE
  1402.         SYNTAX  DisplayString (SIZE (0..32))
  1403.         ACCESS    read-write
  1404.         STATUS    mandatory
  1405.         DESCRIPTION
  1406.             "Specific trap community string."
  1407.         ::= { aptrpEntry 3 }
  1408.     
  1409.     aptrpEnable OBJECT-TYPE
  1410.         SYNTAX    INTEGER {
  1411.                     disabled(0),
  1412.                     enabled(1)
  1413.                 }
  1414.         ACCESS    read-write
  1415.         STATUS    mandatory
  1416.         DESCRIPTION
  1417.             "Enable a specific Trango trap event or not."
  1418.         DEFVAL  {disabled}
  1419.         ::= { aptrpEntry 4 }
  1420.     
  1421.     -- MIB version object
  1422.     mibinfoVersion OBJECT-TYPE
  1423.         SYNTAX  DisplayString (SIZE (0..32))
  1424.         ACCESS    read-only
  1425.         STATUS    mandatory
  1426.         DESCRIPTION
  1427.             "Trango MIB Version."
  1428.         ::= { mibinfo 1 }
  1429.  
  1430.     -- Trap objects
  1431.     suLinkUp TRAP-TYPE
  1432.         ENTERPRISE m5800straps
  1433.         VARIABLES { suID }
  1434.         DESCRIPTION
  1435.           "The SNMP trap that is generated when a specific SU Associated."
  1436.     ::= 7
  1437.  
  1438.     suLinkDown TRAP-TYPE
  1439.         ENTERPRISE m5800straps
  1440.         VARIABLES { suID }
  1441.         DESCRIPTION
  1442.           "The SNMP trap that is generated when a specific SU Powered Off."
  1443.     ::= 8
  1444.  
  1445.     apOpModeFailure TRAP-TYPE
  1446.         ENTERPRISE m5800straps
  1447.         VARIABLES { apsysBaseId }
  1448.         DESCRIPTION
  1449.           "The SNMP trap that is generated when a specific AP
  1450.            not being in ap mode during boot up sequence."
  1451.     ::= 9
  1452.  
  1453. -- End of file <TRANGO.MIB>
  1454. END
  1455.